home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / hardirq.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  493b  |  20 lines

  1. #ifndef __ASM_HARDIRQ_H
  2. #define __ASM_HARDIRQ_H
  3.  
  4. #include <linux/config.h>
  5. #include <linux/threads.h>
  6. #include <linux/irq.h>
  7.  
  8. typedef struct {
  9.     unsigned int __softirq_pending;
  10.     unsigned long idle_timestamp;
  11.     unsigned int __nmi_count;    /* arch dependent */
  12.     unsigned int apic_timer_irqs;    /* arch dependent */
  13. } ____cacheline_aligned irq_cpustat_t;
  14.  
  15. #include <linux/irq_cpustat.h>    /* Standard mappings for irq_cpustat_t above */
  16.  
  17. void ack_bad_irq(unsigned int irq);
  18.  
  19. #endif /* __ASM_HARDIRQ_H */
  20.